@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* --- Hero Section --- */
.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    color: white;
}

.hero-bg .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-bg .display-4 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-bg .lead {
    font-size: 1.25rem;
    font-weight: 400;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

/* --- General Section Styling --- */
section {
    padding: 5rem 0;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-heading p {
    font-size: 1.25rem;
    color: #6c757d;
}

/* --- Services Section --- */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 1rem;
    color: #6c757d;
}

ul.list-unstyled {
    padding-left: 0;
    margin-top: 1rem;
}

ul.list-unstyled li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* --- About Us Section --- */
.bg-light {
    background-color: #f8f9fa !important;
}

.about-left-image {
    background: url('images/background2.png') no-repeat center center;
    background-size: cover;
    min-height: 400px;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* --- FAQ Section --- */
.accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    background-color: transparent;
}

.accordion-button {
    background-color: transparent;
    font-weight: 600;
    color: #333;
    transition: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.accordion-body {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* --- Pricing Philosophy Section --- */
#pricing-philosophy {
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#pricing-philosophy h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

#pricing-philosophy p {
    font-size: 1.25rem;
}

/* --- Contact Section --- */
.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.form-label {
    font-weight: 600;
}

.d-grid button {
    font-size: 1.25rem;
}
.btn-outline-primary-custom {
    color: #495057;
    background-color: transparent;
    background-image: none;
    border-color: #495057;
    border-width: 1px;
    border-radius: 8px; /* This creates the rounded corners */
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus {
    color: #fff;
    background-color: #495057;
    border-color: #495057;
}